home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xmcd-1.4 / Imakefile < prev    next >
Encoding:
Makefile  |  1995-05-10  |  1.5 KB  |  65 lines

  1. /*
  2.  * @(#)Imakefile    5.2 94/12/28
  3.  *
  4.  * Top-level Imakefile for xmcd, cda and libdi
  5.  *
  6.  *    xmcd  - Motif(tm) CD Audio Player
  7.  *    cda   - Command-line CD Audio Player
  8.  *    libdi - CD Audio Player Device Interface Library
  9.  *
  10.  *   Copyright (C) 1995  Ti Kan
  11.  *   E-mail: ti@amb.org
  12.  *
  13.  *   This program is free software; you can redistribute it and/or modify
  14.  *   it under the terms of the GNU General Public License as published by
  15.  *   the Free Software Foundation; either version 2 of the License, or
  16.  *   (at your option) any later version.
  17.  *
  18.  *   This program is distributed in the hope that it will be useful,
  19.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  *   GNU General Public License for more details.
  22.  *
  23.  *   You should have received a copy of the GNU General Public License
  24.  *   along with this program; if not, write to the Free Software
  25.  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  26.  *
  27.  */
  28.  
  29.  
  30. /*
  31.  * Source subdirectory management
  32.  */
  33. #define IHaveSubdirs
  34. SUBDIRS=common.d \
  35.     libdi.d \
  36.     xmcd.d \
  37.     cda.d \
  38.     wm2xmcd.d
  39.  
  40.  
  41. /*
  42.  * Build rule for subdirectories
  43.  */
  44. #define PassCDebugFlags
  45. MakeSubdirs($(SUBDIRS))
  46. DependSubdirs($(SUBDIRS))
  47.  
  48.  
  49. /*
  50.  * Custom install rule
  51.  */
  52. #if defined(ultrix) || defined(__ultrix)
  53. SHELL=/bin/sh5
  54. #elif defined(XmacIIServer)
  55. SHELL=/bin/ksh
  56. #else
  57. SHELL=/bin/sh
  58. #endif
  59.  
  60. install::
  61.     @BINDIR=$(BINDIR) LIBDIR=$(LIBDIR) MANFILE=ManDir/xmcd.ManSuffix \
  62.         $(SHELL) ./install.sh -n
  63.  
  64.  
  65.